const math.mask
14 uses
math (current package)
bits.go#L12: mask = 0x7FF
floor.go#L90: e := uint(bits>>shift) & mask
floor.go#L128: e := uint(bits>>shift) & mask
fma.go#L78: exp = int32(b>>52) & mask
frexp.go#L33: exp += int((x>>shift)&mask) - bias + 1
frexp.go#L34: x &^= mask << shift
ldexp.go#L32: exp += int(x>>shift)&mask - bias
ldexp.go#L47: x &^= mask << shift
logb.go#L49: return int((Float64bits(x)>>shift)&mask) - bias + exp
modf.go#L33: e := uint(x>>shift)&mask - bias
sqrt.go#L114: exp := int((ix >> shift) & mask)
sqrt.go#L123: ix &^= mask << shift
trig_reduce.go#L37: exp := int(ix>>shift&mask) - bias - shift
trig_reduce.go#L38: ix &^= mask << shift
The pages are generated with Golds v0.4.9. (GOOS=linux GOARCH=amd64)